:root {
    /* Base Colors */
    --primary-purple: #8E7DEE;
    --light-purple: #A594FF;
    --white: #FFFFFF;
    --navy-blue: #2A1A5E;
    --glass-blur: 10px;

    /* Theme Semantic Variables (Light Mode Default) */
    --bg-color: #fdfbff;
    --card-bg: var(--white);
    --text-color: #333333;
    --text-muted: #666666;
    --heading-color: var(--navy-blue);
    --border-color: rgba(142, 125, 238, 0.15);

    /* Navbar specific (Default: Light Background, Dark Text) */
    --navbar-bg: rgba(255, 255, 255, 0.05);
    /* Very transparent top */
    --navbar-scrolled-bg: rgba(255, 255, 255, 0.9);
    --navbar-text: var(--navy-blue);
    /* Default is dark */
    --navbar-scrolled-text: #333333;
    --navbar-scrolled-border: rgba(142, 125, 238, 0.2);

    /* UI Inputs and Buttons */
    --input-bg: #fdfbff;
    --input-focus-bg: var(--white);
    --button-bg: #2A1A5E;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #E0E0E0;
    --text-muted: #A0A0A0;
    --heading-color: #FFFFFF;
    --border-color: rgba(142, 125, 238, 0.3);

    --navbar-bg: rgba(18, 18, 18, 0.3);
    --navbar-scrolled-bg: rgba(30, 30, 30, 0.95);
    --navbar-text: #E0E0E0;
    --navbar-scrolled-text: #FFFFFF;
    --navbar-scrolled-border: rgba(142, 125, 238, 0.4);

    --input-bg: #2A2A2A;
    --input-focus-bg: #333333;
    --button-bg: var(--primary-purple);
    --button-text: #FFFFFF;
}

/* Navbar visibility overrides for pages with DARK Hero background (Home Page Only) in Light Mode */
.home-page .navbar {
    --navbar-text: #FFFFFF;
    /* High contrast for Home Hero img at top */
}

.home-page .navbar.scrolled {
    --navbar-text: var(--navy-blue);
    /* Switch to dark when scrolled over white sections */
}

/* Ensure Dark Mode always has light text */
[data-theme="dark"],
[data-theme="dark"] .home-page {
    --navbar-text: #E0E0E0;
    --navbar-bg: rgba(18, 18, 18, 0.3);
    --navbar-scrolled-bg: rgba(30, 30, 30, 0.95);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: var(--navbar-scrolled-bg);
    border-bottom-color: var(--navbar-scrolled-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navbar-text);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo span {
    color: var(--navbar-scrolled-text);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navbar-text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--navbar-scrolled-text);
}

.nav-links a:hover {
    color: var(--light-purple) !important;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../Images/scenic_background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-button {
    background-color: var(--button-bg);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Footer */
.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--white);
}

.icons {
    display: flex;
    gap: 20px;
}

.icons a {
    color: var(--white);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.icons a:hover {
    color: var(--light-purple);
}

/* Homepage News Section */
.news-section {
    padding: 100px 40px;
    background: var(--bg-color);
    color: var(--text-color);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 50px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid rgba(142, 125, 238, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(142, 125, 238, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(142, 125, 238, 0.15);
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.news-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.read-more i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--button-bg);
}

.read-more:hover i {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        align-items: center;
        gap: 10px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-color) !important;
        font-size: 1.25rem;
        font-weight: 600;
        width: 85%;
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-container {
        padding: 0 25px;
        justify-content: space-between !important;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-footer {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        bottom: 30px;
    }

    .icons {
        justify-content: center;
    }
}

/* Mobile Menu Toggle & Theme Toggle Styles */
.menu-toggle,
.theme-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--navbar-text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    height: 44px;
    width: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-toggle.active,
.nav-links.active~.theme-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mobile Menu Header Styles */
.mobile-menu-header {
    display: none;
    width: 100%;
    padding: 20px 25px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
}

@media (max-width: 991px) {
    .mobile-menu-header {
        display: flex;
    }
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mobile-menu-logo img {
    height: 36px;
    width: auto;
}

.mobile-menu-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Control Buttons in Drawer */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-theme-toggle,
.close-menu {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(142, 125, 238, 0.1);
    transition: background 0.3s ease;
}

.mobile-theme-toggle:hover,
.close-menu:hover {
    background: rgba(142, 125, 238, 0.2);
}

.close-menu {
    font-size: 1.3rem;
}

/* On desktop, show theme toggle but NOT menu toggle */
.theme-toggle {
    display: flex;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.menu-toggle:hover,
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .menu-toggle,
.navbar.scrolled .theme-toggle {
    color: var(--navbar-scrolled-text);
    background: rgba(142, 125, 238, 0.05);
    border: 1px solid rgba(142, 125, 238, 0.2);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        /* Force flex for alignment if displayed */
    }
}

/* Mobile overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    display: block;
}


/* Meet Us Page Specific Styles */
.meet-us-page {
    background: var(--bg-color);
    min-height: 100vh;
}


.meet-us-main {
    padding-top: 120px;
}

.meet-us-hero {
    text-align: center;
    padding: 80px 20px;
    background-image: url('../Images/meet_us_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 70px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.meet-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142, 125, 238, 0.4);
    /* Light purple tint */
    z-index: 1;
}

.meet-us-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.team-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 100px;
    position: relative;
}

.team-grid-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 125, 238, 0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.team-grid-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(165, 148, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.team-category-header {
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-purple);
    font-weight: 700;
    margin: 80px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.team-category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.leadership-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 125, 238, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(142, 125, 238, 0.4);
    box-shadow: 0 20px 50px rgba(142, 125, 238, 0.15), 0 0 15px rgba(142, 125, 238, 0.05);
}

.team-card:hover::before {
    opacity: 1;
}

.centered-card {
    display: none; /* No longer needed in categorized layout */
}

.team-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 30px;
}

.profile-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.profile-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(142, 125, 238, 0.3);
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .profile-circle {
    border-color: #333;
}

.profile-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.team-card:hover .profile-circle {
    transform: scale(1.08) rotate(2deg);
}

.team-card:hover .profile-circle::after {
    opacity: 0.4;
    transform: scale(1);
}

.team-names {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

/* Mobile Adjustments for Team Grid */
@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 2.5rem;
    }

    .team-card {
        padding: 40px 20px;
    }

    .profile-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* Vacancy Notice Styles */
.vacancy-notice {
    margin-top: 100px;
    text-align: center;
    background: rgba(142, 125, 238, 0.05);
    padding: 60px 40px;
    border-radius: 32px;
    border: 1px dashed var(--primary-purple);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
}

.vacancy-notice p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.vacancy-notice a {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.vacancy-notice a:hover {
    color: var(--light-purple);
}

.notice-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.8;
}

/* About Us Page Specific Styles */
.about-us-page {
    background: var(--bg-color);
    min-height: 100vh;
}

.about-us-main {
    padding-top: 120px;
}

.about-us-hero {
    text-align: center;
    padding: 60px 20px;
    background-image: url('../Images/meet_us_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 60px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142, 125, 238, 0.4);
    /* Light purple tint */
    z-index: 1;
}

.about-us-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.story-block {
    margin-bottom: 80px;
}

.story-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.impact-text {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.4rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
}

.disclaimer-block {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    background: rgba(142, 125, 238, 0.05);
    /* Very light purple box */
    border-radius: 20px;
    border: 1px solid rgba(142, 125, 238, 0.1);
}

.disclaimer-block p {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 1;
    margin-bottom: 0;
}

.support-section {
    margin-top: 100px;
}

.support-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(142, 125, 238, 0.15);
    border: 1px solid rgba(142, 125, 238, 0.1);
}

.support-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.support-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.charity-note {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-purple);
    font-size: 1rem;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.charity-note strong {
    color: var(--primary-purple);
}

/* Mobile Adjustments for About Us Page */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.8rem;
    }

    .story-block h2 {
        font-size: 1.8rem;
    }

    .story-block p {
        font-size: 1.05rem;
    }

    .support-card {
        padding: 40px 20px;
    }
}

/* Vacancies Page Specific Styles */
.vacancies-page {
    background: var(--bg-color);
    min-height: 100vh;
}

.vacancies-main {
    padding-top: 140px;
    /* Increased for fixed navbar */
    max-width: 1250px;
    /* Slightly wider */
    margin: 0 auto;
    padding-bottom: 100px;
}

.vacancies-header {
    text-align: center;
    padding: 80px 20px;
    background-image: url('../Images/meet_us_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vacancies-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142, 125, 238, 0.5);
    z-index: 1;
}

.vacancies-header .hero-content {
    position: relative;
    z-index: 2;
}

.job-board {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    padding: 0 20px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for job list */
.job-list::-webkit-scrollbar {
    width: 6px;
}

.job-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.job-list::-webkit-scrollbar-thumb {
    background: var(--light-purple);
    border-radius: 10px;
}

.vacancy-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(142, 125, 238, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    border-color: var(--light-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 125, 238, 0.15);
}

.vacancy-card.active {
    border-color: var(--primary-purple);
    background-color: rgba(142, 125, 238, 0.03);
}

.vacancy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.company-name {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.job-brief-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-remote {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-voluntary {
    background: #fff3e0;
    color: #ef6c00;
}

.badge-new {
    background: var(--primary-purple);
    color: var(--white);
}

.job-details-view {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(142, 125, 238, 0.12);
    position: sticky;
    top: 140px;
    height: fit-content;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    border: 1px solid rgba(142, 125, 238, 0.1);
}

.close-details {
    display: none;
}

.details-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.details-meta {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.details-meta .badge {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.apply-button {
    background-color: var(--button-bg);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    display: inline-block;
    text-decoration: none;
}

.apply-button:hover {
    background-color: var(--primary-purple);
    transform: scale(1.02);
}

.details-content h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin: 30px 0 15px;
    font-weight: 700;
}

.details-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.details-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.details-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.details-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.application-rules {
    background: rgba(142, 125, 238, 0.05);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    border: 1px dashed var(--primary-purple);
}

.application-rules h3 {
    margin-top: 0 !important;
}

.application-rules a {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 700;
}

.role-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

/* Modal for mobile applications or detail view */
@media (max-width: 991px) {
    .job-board {
        grid-template-columns: 1fr;
    }

    .job-details-view {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        border-radius: 0;
        max-height: 100vh;
        display: none;
        /* Shown via JS */
    }

    .job-details-view.show {
        display: block;
    }

    .close-details {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--heading-color);
        display: block;
        z-index: 10;
    }
}

@media (max-width: 600px) {
    .vacancies-header {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

/* ============================================
   FAQ Page Styles
   ============================================ */

.faq-page {
    background: var(--bg-color);
    min-height: 100vh;
}


.faq-main {
    padding-top: 140px;
}

/* Hero */
.faq-hero {
    text-align: center;
    padding: 80px 20px;
    background-image: url('../Images/meet_us_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 60px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(142, 125, 238, 0.4);
    z-index: 1;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* FAQ Content Section */
.faq-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 30px 100px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Category */
.faq-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category-title i {
    font-size: 1rem;
    opacity: 0.85;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Accordion Item */
.faq-item {
    border-radius: 16px;
    border: 1.5px solid rgba(142, 125, 238, 0.15);
    background: var(--card-bg);
    box-shadow: 0 4px 16px rgba(142, 125, 238, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(142, 125, 238, 0.35);
    box-shadow: 0 8px 24px rgba(142, 125, 238, 0.12);
}

.faq-item.open {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 28px rgba(142, 125, 238, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading-color);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(142, 125, 238, 0.04);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-purple);
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Answer (closed by default via max-height) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 28px 26px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--primary-purple);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: var(--light-purple);
}

/* Bullet list inside answer */
.faq-list-items {
    list-style: none;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-list-items li {
    padding-left: 22px;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-list-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-purple);
    opacity: 0.7;
}

/* Warning box inside answer */
.faq-warning {
    background: rgba(255, 87, 87, 0.06);
    border-left: 4px solid #e05c5c;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-size: 0.95rem !important;
    color: #b94444 !important;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.faq-warning i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Still have a question CTA */
.faq-cta {
    margin-top: 70px;
}

.faq-cta-inner {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #3d2580 100%);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(42, 26, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.faq-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.faq-cta-icon {
    font-size: 2.8rem;
    color: var(--light-purple);
    margin-bottom: 20px;
    display: block;
}

.faq-cta-inner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.faq-cta-inner p {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 480px;
    margin: 0 auto 35px;
    line-height: 1.65;
}

.faq-cta-button {
    display: inline-block;
    background: var(--card-bg);
    color: var(--heading-color);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        padding: 60px 20px;
    }

    .faq-section {
        padding: 0 20px 80px;
    }

    .faq-question {
        font-size: 0.97rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 22px;
    }

    .faq-cta-inner {
        padding: 50px 25px;
    }

    .faq-cta-inner h3 {
        font-size: 1.6rem;
    }
}

/* ============================================
   Contact Us Page Styles
   ============================================ */

.contact-page {
    background: var(--bg-color);
    min-height: 100vh;
}


.contact-main {
    padding-top: 140px;
}

/* Hero */
.contact-hero {
    text-align: center;
    padding: 80px 20px;
    background-image: url('../Images/meet_us_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 70px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(142, 125, 238, 0.4);
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Split Layout Body */
.contact-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 100px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

/* ---- Left Info Panel ---- */
.contact-info-sticky {
    position: sticky;
    top: 140px;
}

.contact-info-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.contact-info-subtext {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(142, 125, 238, 0.3);
}

.contact-info-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info-value:hover {
    color: var(--primary-purple);
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

.contact-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(142, 125, 238, 0.08);
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(142, 125, 238, 0.15);
}

.contact-socials a:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.contact-notice {
    background: rgba(255, 87, 87, 0.05);
    border-left: 4px solid #e05c5c;
    border-radius: 0 14px 14px 0;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-notice i {
    color: #e05c5c;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-notice p {
    font-size: 0.9rem;
    color: #b94444;
    line-height: 1.6;
    margin: 0;
}

/* ---- Right Form Panel ---- */
.contact-form-card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(142, 125, 238, 0.1);
    border: 1px solid rgba(142, 125, 238, 0.1);
}

.contact-form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.contact-form-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.2px;
}

.required {
    color: var(--primary-purple);
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--heading-color);
    background: var(--input-bg);
    border: 1.5px solid rgba(142, 125, 238, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(142, 125, 238, 0.1);
    background: var(--input-focus-bg);
}

.form-group select option {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 10px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e05c5c;
    box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Custom Select */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    cursor: pointer;
    padding-right: 44px;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-purple);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.select-wrapper select:focus+.select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Checkbox */
.form-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.55;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 7px;
    border: 2px solid rgba(142, 125, 238, 0.4);
    background: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: white;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--navy-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 16px;
    padding: 18px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(142, 125, 238, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(142, 125, 238, 0.4);
}

.contact-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.contact-submit-btn.loading .btn-text::after {
    content: '...';
    animation: ellipsis 1s infinite;
}

.contact-submit-btn.loading .btn-icon {
    animation: spin 0.8s linear infinite;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 
   Success State 
*/
.form-success {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.form-success p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 380px;
}

.send-another-btn {
    background: none;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.send-another-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        padding: 60px 20px;
    }

    .contact-body {
        padding: 0 20px 80px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Global Mobile Overrides & Polish */
@media (max-width: 991px) {

    /* Grids & Cards */
    .news-grid,
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .news-card,
    .team-card,
    .vacancy-card {
        padding: 25px 20px !important;
    }

    /* Hero & Page Titles */
    .page-title {
        font-size: 2.2rem !important;
    }

    .page-subtitle {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    /* Vacancies Specific Fix */
    .job-board {
        grid-template-columns: 1fr !important;
    }

    .job-list {
        max-height: 500px;
    }

    /* FAQ Hero */
    .faq-hero,
    .vacancies-header {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        padding: 60px 20px !important;
    }

    /* Section Padding */
    .news-section,
    .team-grid-section,
    .about-container,
    .faq-section {
        padding: 40px 20px !important;
    }

    /* Story Blocks */
    .story-block {
        margin-bottom: 40px !important;
    }

    .story-block h2 {
        font-size: 1.8rem !important;
    }

    /* Meet Us Profiles */
    .profile-group {
        flex-wrap: wrap;
    }

    .profile-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.3rem !important;
    }

    .team-names {
        font-size: 1.2rem !important;
    }

    /* Hero Refinements */
    .meet-us-hero,
    .policy-hero {
        min-height: 180px !important;
        padding: 40px 20px !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        border-radius: 20px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 20px 15px !important;
    }

    .profile-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.1rem !important;
    }

    .acronym-box {
        padding: 20px !important;
    }

    .policy-card {
        padding: 25px 20px !important;
    }
}

/* Fix for centered card on Meet Us */
@media (max-width: 991px) {
    .centered-card {
        max-width: 100% !important;
    }
}

/* ============================================
   Global Footer Styles
   ============================================ */
.site-footer {
    background: var(--card-bg);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    height: 40px;
}

.footer-brand .footer-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 25px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-purple);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-legal-links a {
        margin: 0 !important;
    }
}

/* ============================================
   Policy & Legal Page Styles
   ============================================ */
.policy-page {
    background: var(--bg-color);
}

.policy-main {
    padding-top: 140px;
}

.policy-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #3d2580 100%);
    position: relative;
    color: var(--white);
    margin-bottom: 70px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 100px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Policy Navigation Sticky */
.policy-nav-sticky {
    position: sticky;
    top: 140px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(142, 125, 238, 0.05);
}

.policy-nav-sticky h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.policy-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-nav-list a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-nav-list a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.policy-nav-list a:hover {
    background: rgba(142, 125, 238, 0.05);
    color: var(--primary-purple);
}

.policy-nav-list a.active {
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(142, 125, 238, 0.3);
}

/* Content Sections */
.policy-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.policy-section-header {
    margin-bottom: 30px;
}

.policy-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.policy-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(142, 125, 238, 0.05);
}

.policy-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 40px 0 20px;
}

.policy-text h3:first-child {
    margin-top: 0;
}

.policy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Disclaimer Specific Styling */
.disclaimer-card {
    border-top: 6px solid #e05c5c;
    background: rgba(224, 92, 92, 0.02);
}

.disclaimer-warning {
    background: rgba(224, 92, 92, 0.06);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    border-left: 4px solid #e05c5c;
}

.disclaimer-warning i {
    font-size: 2rem;
    color: #e05c5c;
    flex-shrink: 0;
}

.disclaimer-warning p {
    margin-bottom: 0;
    font-weight: 600;
    color: #b94444;
}

/* Bullets */
.legal-list {
    list-style: none;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-list li {
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.legal-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.legal-list.negative li::before {
    content: '\f057';
    color: #e05c5c;
}

@media (max-width: 991px) {
    .policy-container {
        grid-template-columns: 1fr;
        padding: 0 20px 80px;
    }

    .policy-nav-sticky {
        position: static;
        z-index: 10;
        background: var(--card-bg);
        margin: 0 0 40px;
        padding: 25px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(142, 125, 238, 0.05);
    }

    .policy-nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding: 5px 0 10px;
        white-space: nowrap;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .policy-nav-list::-webkit-scrollbar {
        height: 3px;
    }

    .policy-nav-list::-webkit-scrollbar-thumb {
        background: rgba(142, 125, 238, 0.2);
        border-radius: 10px;
    }

    .policy-card {
        padding: 40px 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Safeguarding Acronym Styles */
.acronym-box {
    background: rgba(142, 125, 238, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acronym-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 30px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.acronym-item:hover {
    background: rgba(142, 125, 238, 0.08);
    border-color: rgba(142, 125, 238, 0.2);
    transform: translateX(5px);
}

.acronym-item strong {
    color: var(--primary-purple);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acronym-item strong::after {
    content: ':';
    opacity: 0.5;
}

.acronym-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .acronym-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .acronym-item strong::after {
        display: none;
    }
}

/* Policy Section Logo Styles */
.header-with-logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.policy-section-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(142, 125, 238, 0.1);
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 125, 238, 0.2);
    transition: transform 0.3s ease;
}

.policy-section-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.header-text-group h2 {
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .header-with-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}